How do you retrieve "related" documents in Firestore? Nodejs Express.js
If by related document you mean the "reference" datatype in Firestore, you can retrieve it from the Firestore using the get method, exactly like you would do when retrieving a single doc.
myDoc.referencedDocument.get().then(result => {
const data = result.data();
// 'data' will contain the referenced document
})